Reflection .NET API
Attachmate.Reflection.Emulation.OpenSystems Assembly / Attachmate.Reflection.Emulation.OpenSystems Namespace / IMacro Interface / RunMacro Method / RunMacro(ProjectOption,String,Object[]) Method
The location of the macro. MacroEnumerationOption.Document indicates that the macro is located in the session document's VBA project. MacroEnumerationOption.Common indicates that the macro is located in the Common VBA project.
The name of the macro to run.
An optional parameter to pass to the macro.


In This Topic
    RunMacro(ProjectOption,String,Object[]) Method
    In This Topic
    Runs a macro.
    Syntax
    'Declaration
     
    
    Overloads Sub RunMacro( _
       ByVal macroSource As ProjectOption, _
       ByVal macroName As String, _
       ByVal macroParameters() As Object _
    ) 
    'Usage
     
    
    Dim instance As IMacro
    Dim macroSource As ProjectOption
    Dim macroName As String
    Dim macroParameters() As Object
     
    instance.RunMacro(macroSource, macroName, macroParameters)

    Parameters

    macroSource
    The location of the macro. MacroEnumerationOption.Document indicates that the macro is located in the session document's VBA project. MacroEnumerationOption.Common indicates that the macro is located in the Common VBA project.
    macroName
    The name of the macro to run.
    macroParameters
    An optional parameter to pass to the macro.
    See Also